home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- /**
- @Tool: insert Header 4~wraps the current selection with
- <H4> ... </H4> tags.
- @EndTool:
- @Summary: insert Header 4~wraps selection with the H4 tag
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- var upperCaseHtmlTags = getMapFileValue("Preferences", "Upper Case HTML Tags", true);
- if(upperCaseHtmlTags)
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</H4>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<H4>");
- }
- else
- {
- editor.insert(selection.endLineIndex, selection.endCharIndex, "</h4>");
- editor.insert(selection.startLineIndex, selection.startCharIndex, "<h4>");
- }
- editor.setActive();
- }
- }
-
- !!/Script
-